Assignemnt #18 and Fifteenth Program

Code

   ///  Name: Derrick Andreasen
      /// period: 7
    /// Program name: Fifthteenth program
    /// File name: FiftProg.java
    /// Date finished: 9/17/2015
    public class FiftProg
    {
        public static void main( String[] args )
        {
        String Electronics, algebra_2, wood_tech, English_3, US_History, chemistry, intro_Comp_prog,Poehnert, Karas, blank, tate, downing, morgan, davis;
            
            Electronics = "Electronics adv";
            algebra_2 = "Algebra 2";
            wood_tech = "Wood tech";
            English_3 = "English 3";
            US_History = "US History";
            chemistry = "Chemistry";
            intro_Comp_prog = "Intro Comp Prog";
            Poehnert = "Mr. Poehnert";
            Karas = "Mr.Karas";
            blank = "Mr.Blank";
            tate = "Ms. Tate";
            downing = "Mr. Downing";
            morgan = "Mr. Morgan";
            davis = "Mr. Davis";
            
            
            System.out.println( "+--------------------------------------------------------------------+" );
            System.out.println( "| 1 |                       " + Electronics + "|   " + Poehnert + "          |" );
            System.out.println( "| 1 |                       " + algebra_2 + "|   " + Karas + "                    |" );
            System.out.println( "| 1 |                       " + wood_tech + "|   " + blank + "                    |" );
            System.out.println( "| 1 |                       " + English_3 + "|   " + tate + "                    |" );
            System.out.println( "| 1 |                       " + US_History + "|   " + downing + "                |" );
            System.out.println( "| 1 |                       " + chemistry + "|   " + morgan + "                  |" );
            System.out.println( "| 1 |                       " + intro_Comp_prog + "|   " + davis + "             |" );
             System.out.println( "+--------------------------------------------------------------------+" );
        }
    }
    
    

Picture of the output

Assignment 18